home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / BASIC / 0156.ZIP / WORD.UNP < prev    next >
Text File  |  1984-04-20  |  4KB  |  94 lines

  1.     Here are two different ways to get around the copy protection
  2. on Microsoft's Word disk.
  3.  
  4. ********************************************************************
  5.  
  6. The protection scheme for MS word is quite good.  The last track
  7. is formatted with 256 byte sectors.  One sector, however, has
  8. an ID that says it is a 1K sector.  If you try to read it as a 256
  9. byte sector, you'll get a sector not found.  You can read it as a
  10. 1K sector with a guaranteed CRC error, and you will get the data
  11. and other sector overhead from 3+ sectors.  They read it as 1K, and
  12. use the bytes after the first 256 for decryption.  These bytes
  13. constitute the post-amble of the sector, the inter-sector gap, and
  14. the preamble to the next 256 byte sector.  If it's not formatted
  15. with the correct inter-sector gap, the decryption key is
  16. different and the incorrectly decoded program bombs.
  17.  
  18. The best way around this is to modify the MWCOPY program so it
  19. will let you make more than one copy.  The below mods will let
  20. you make as many backups as you want (and you can leave the
  21. write protect tab on your master disk).  Of course, this method
  22. should only be used by registered owners of Word.  If you, or any
  23. of your IMF force is killed, the secretary will disavow any
  24. knowledge of these patches.
  25.  
  26. We will copy MWCOPY to another disk, using another name (MWCP) so
  27. you'll know it's the special version, and then modify MWCP.
  28.  
  29. (with master disk in A:, B: has any disk with debug on it)
  30. A>copy mwcopy.com b:mwcp.com
  31. A>b:
  32. B>debug mwcp.com
  33. -e103
  34. xxxx:0103  0x.00
  35. -e148
  36. xxxx:0148  A5.a7
  37. -e194
  38. xxxx:0194  02.04
  39. -e32a
  40. xxxx:032A  1C.1e
  41. -e32e
  42. xxxx:032E  1C.1e
  43. -e3372
  44. xxxx:3372  01.03
  45. -ecfe
  46. xxxx:0CFE  CD.90<space>26.90<space>
  47. xxxx:0D00  5B.90
  48. -e4ab
  49. xxxx:04AB  1B.84
  50. -e69a
  51. xxxx:069A  C1.b9<space>38.ff<space>28.b9
  52. -e7b3
  53. xxxx:07B3  A2.5f<space>08.e9
  54. -e66f
  55. xxxx:066F  E5.d8<space>
  56. xxxx:0670  94.29<space>90.ff<space>29.b9
  57. -w
  58. Writing 332D bytes
  59. -q
  60. B>mwcp      (try making a copy..remember,
  61.              leave the write-protect on the master)
  62.    (Just follow the prompts in the program, except when they ask
  63.     you to remove the write protect tab)
  64.  
  65. I think this will also work for the hard disk copy portion.  Another
  66. way to unprotect Word gets rid of the need for any weird disk formats.
  67. But it is MUCH more complicated to do.  Enjoy!
  68.  
  69. **********************************************************************
  70.  
  71. I have discovered that if you use one of the copy programs to
  72. copy word and then run the install program for the hard disk
  73. from that copied disk, word will let you run the install to a
  74. diskette as well.  It seems that after you have done a hard disk
  75. install, Word doesn't check the validity of the copy protect for
  76. the next install.  I had originally installed to my hard disk
  77. from a copy of my original, but until recently I hadn't tried
  78. the diskette install.  I had however, tried the diskette install
  79. from the copied diskette first and found that the resulting
  80. installed copy of Word would not run.  While this does not
  81. solve the problems created by Word's copy protect, such as not
  82. being able to run in a ramdrive, it does give you extra backup 
  83. copies and possibly keep you from having to go back to Microsoft 
  84. for a replacement.
  85.  
  86. As far as I can tell, this will only work on a virgin copy of
  87. Word, or one which was copied before the install was run, since
  88. after an install is run, Word won't let you do a second one.
  89.  
  90. Using this method, you can create as many copies as you care to from
  91. MWCOPY, so long as you do a hard disk install for each one before
  92. you attempt to do the diskette install.
  93.  
  94.